home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / perror.c < prev    next >
C/C++ Source or Header  |  1991-10-02  |  1KB  |  53 lines

  1. /* 
  2.  * perror.c --
  3.  *
  4.  *    Source code for the "perror" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/perror.c,v 1.2 88/07/25 13:12:59 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <stdio.h>
  21. #include <errno.h>
  22. #include <stdlib.h>
  23. #include <string.h>
  24.  
  25.  
  26. /*
  27.  *----------------------------------------------------------------------
  28.  *
  29.  * perror --
  30.  *
  31.  *    Print a message describing the current error condition (as
  32.  *    given by errno), with a given introductory message.
  33.  *
  34.  * Results:
  35.  *    None.
  36.  *
  37.  * Side effects:
  38.  *    Stuff gets printed.
  39.  *
  40.  *----------------------------------------------------------------------
  41.  */
  42.  
  43. void
  44. perror(msg)
  45.     char *msg;            /* Message to print before the message
  46.                  * describing the error. */
  47. {
  48.     if ((msg != 0) && (*msg != 0)) {
  49.     fprintf(stderr, "%s: ", msg);
  50.     }
  51.     fprintf(stderr, "%s\n", strerror(errno));
  52. }
  53.